You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
925 B
42 lines
925 B
{ |
|
"compilerOptions": { |
|
"target": "ES5", |
|
"lib": [ |
|
"DOM", |
|
"DOM.Iterable", |
|
"ESNext" |
|
], |
|
"allowJs": true, |
|
"skipLibCheck": true, |
|
"sourceMap": true, |
|
"esModuleInterop": true, |
|
"experimentalDecorators": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"module": "ESNext", |
|
"moduleResolution": "node", |
|
"resolveJsonModule": true, |
|
"isolatedModules": true, |
|
"noEmit": true, |
|
"noImplicitReturns": true, |
|
"noImplicitThis": false, |
|
"noImplicitAny": true, |
|
"strictNullChecks": true, |
|
"suppressImplicitAnyIndexErrors": true, |
|
"noUnusedLocals": false, |
|
"allowUnusedLabels": false, |
|
"noUnusedParameters": false, |
|
"jsx": "react", |
|
"outDir": "dist", |
|
"baseUrl": "src", |
|
"allowSyntheticDefaultImports": true, |
|
"strict": true |
|
}, |
|
"include": [ |
|
"src/**/*", |
|
"**/*.ts", |
|
"**/*.tsx" |
|
], |
|
"exclude": [ |
|
"node_modules" |
|
] |
|
}
|
|
|