We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module.exports = function (grunt) { grunt.initConfig({ ts: { default: { options: { sourceMap: false, compile: true, fast: 'never' }, src: ["api/**/*.ts", "!node_modules/**"], watch: ".", outDir: ["api/build"] } } }); grunt.loadNpmTasks("grunt-ts"); grunt.registerTask("default", ["ts"]); };
When I tried adding a new ts files under api, it detects the new file but is not included for compiling.
Verifying property ts.default exists in config...OK
Files: api/controllers/hello.ts, api/repositories/t.ts, api/services/hello.ts, api/services/te.ts Watching all TypeScript / Html files under : . Compiling... Using tsc v2.3.2 TypeScript path: /Users/LouisMaycol/rappler4-api/agos-api/node_modules/typescript/bin/tsc api/controllers/hello.ts api/repositories/t.ts api/services/hello.ts api/services/te.ts api/.baseDir.ts --removeComments --target ES5 --outDir api/build
TypeScript compilation complete: 4.19s for 5 TypeScript files. +++ added >>api/repositories/r.ts Compiling... Using tsc v2.3.2 TypeScript path: /Users/LouisMaycol/rappler4-api/agos-api/node_modules/typescript/bin/tsc api/controllers/hello.ts api/repositories/t.ts api/services/hello.ts api/services/te.ts api/.baseDir.ts --removeComments --target ES5 --outDir api/build TypeScript compilation complete: 2.48s for 5 TypeScript files.
TypeScript compilation complete: 4.19s for 5 TypeScript files. +++ added >>api/repositories/r.ts Compiling... Using tsc v2.3.2 TypeScript path: /Users/LouisMaycol/rappler4-api/agos-api/node_modules/typescript/bin/tsc api/controllers/hello.ts api/repositories/t.ts api/services/hello.ts api/services/te.ts api/.baseDir.ts --removeComments --target ES5 --outDir api/build
TypeScript compilation complete: 2.48s for 5 TypeScript files.
The text was updated successfully, but these errors were encountered:
Hi - I am working on a patch for this. Thank you for the report.
Sorry, something went wrong.
nycdotnet
No branches or pull requests
When I tried adding a new ts files under api, it detects the new file but is not included for compiling.
The text was updated successfully, but these errors were encountered: