|
1 | 1 | { |
2 | | - "compilerOptions": { |
3 | | - "outDir": "build/dist", |
4 | | - "module": "esnext", |
5 | | - "target": "esnext", |
6 | | - "lib": ["esnext", "dom"], |
7 | | - "sourceMap": true, |
8 | | - "baseUrl": ".", |
9 | | - "jsx": "preserve", |
10 | | - "allowSyntheticDefaultImports": true, |
11 | | - "moduleResolution": "node", |
12 | | - "forceConsistentCasingInFileNames": true, |
13 | | - "noImplicitReturns": true, |
14 | | - "suppressImplicitAnyIndexErrors": true, |
15 | | - "noUnusedLocals": true, |
16 | | - "allowJs": true, |
17 | | - "skipLibCheck": true, |
18 | | - "experimentalDecorators": true, |
19 | | - "strict": true, |
20 | | - "paths": { |
21 | | - "@/*": ["./src/*"], |
22 | | - "@@/*": ["./src/.fes/*"] |
23 | | - } |
24 | | - }, |
25 | | - "include": [ |
26 | | - "src/**/*", |
27 | | - "tests/**/*", |
28 | | - "test/**/*", |
29 | | - "__test__/**/*", |
30 | | - "typings/**/*", |
31 | | - "config/**/*", |
32 | | - ".eslintrc.js", |
33 | | - ".stylelintrc.js", |
34 | | - ".prettierrc.js" |
35 | | - ], |
36 | | - "exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"] |
| 2 | + "compilerOptions": { |
| 3 | + "target": "esnext", |
| 4 | + "jsx": "preserve", |
| 5 | + "lib": ["esnext", "dom"], |
| 6 | + "experimentalDecorators": true, |
| 7 | + "baseUrl": ".", |
| 8 | + "module": "esnext", |
| 9 | + "moduleResolution": "node", |
| 10 | + "paths": { |
| 11 | + "@/*": ["./src/*"], |
| 12 | + "@@/*": ["./src/.fes/*"] |
| 13 | + }, |
| 14 | + "allowJs": true, |
| 15 | + "strict": true, |
| 16 | + "noImplicitReturns": true, |
| 17 | + "noUnusedLocals": true, |
| 18 | + "outDir": "build/dist", |
| 19 | + "sourceMap": true, |
| 20 | + "allowSyntheticDefaultImports": true, |
| 21 | + "forceConsistentCasingInFileNames": true, |
| 22 | + "skipLibCheck": true |
| 23 | + }, |
| 24 | + "include": [ |
| 25 | + "src/**/*" |
| 26 | + ] |
| 27 | + |
37 | 28 | } |
0 commit comments