|
1 | 1 | { |
| 2 | + "compileOnSave": false, |
2 | 3 | "compilerOptions": { |
3 | 4 | "declaration": false, |
4 | | - "module": "system", |
5 | | - "target": "es6", |
6 | | - "emitDecoratorMetadata": true, |
7 | | - "experimentalDecorators": true, |
8 | | - "isolatedModules": false, |
9 | 5 | "jsx": "react", |
10 | | - "moduleResolution": "node", |
| 6 | + "module": "system", |
11 | 7 | "noEmit": true, |
12 | 8 | "noEmitOnError": true, |
13 | 9 | "noImplicitAny": false, |
14 | 10 | "noResolve": false, |
15 | 11 | "outDir": "../out", |
16 | 12 | "preserveConstEnums": true, |
17 | 13 | "removeComments": true, |
| 14 | + "isolatedModules": false, |
18 | 15 | "sourceMap": false, |
| 16 | + "target": "es6", |
| 17 | + "experimentalDecorators": true, |
| 18 | + "emitDecoratorMetadata": true, |
| 19 | + "moduleResolution": "node", |
19 | 20 | "allowUnusedLabels": false, |
20 | 21 | "noImplicitReturns": true, |
21 | | - "noFallthroughCasesInSwitch": true |
| 22 | + "noFallthroughCasesInSwitch": true, |
| 23 | + "allowUnreachableCode": false, |
| 24 | + "noImplicitUseStrict": false, |
| 25 | + "typeRoots": ["../node_modules/@types/"] |
22 | 26 | }, |
23 | | - "filesGlob": [ |
24 | | - "**/*.ts", |
25 | | - "**/*.tsx", |
26 | | - "!node_modules/**" |
| 27 | + "include": [ |
| 28 | + "**/*" |
27 | 29 | ], |
28 | | - "files": [ |
29 | | - "app-typings.d.ts", |
30 | | - "app.tsx", |
31 | | - "components/main.tsx", |
32 | | - "components/user-profile.tsx", |
33 | | - "stores/app-store.spec.tsx", |
34 | | - "stores/app-store.tsx", |
35 | | - "test-runner.tsx" |
| 30 | + "exclude": [ |
| 31 | + "node_modules/**/", |
| 32 | + "jspm_packages/**/", |
| 33 | + "test-runner.tsx", |
| 34 | + "**/*.spec.*" |
36 | 35 | ], |
37 | 36 | "atom": { |
38 | | - "rewriteTsconfig": true, |
39 | | - "formatOnSave": false |
| 37 | + "rewriteTsconfig": true |
| 38 | + }, |
| 39 | + "vscode": { |
| 40 | + "rewriteTsconfig": true |
40 | 41 | }, |
41 | 42 | "formatCodeOptions": { |
42 | 43 | "indentSize": 2, |
|
51 | 52 | "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, |
52 | 53 | "placeOpenBraceOnNewLineForFunctions": false, |
53 | 54 | "placeOpenBraceOnNewLineForControlBlocks": false |
54 | | - }, |
55 | | - "compileOnSave": false |
| 55 | + } |
56 | 56 | } |
0 commit comments