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.
22 lines
485 B
22 lines
485 B
{ |
|
"compilerOptions": { |
|
"allowJs": true, |
|
"target": "es6", |
|
"module": "esnext", |
|
"noUnusedParameters": true, |
|
"noUnusedLocals": true, |
|
"strictNullChecks": true, |
|
"jsx": "react-jsx", |
|
"moduleResolution": "node", |
|
"baseUrl": "src", |
|
"esModuleInterop": true, |
|
"experimentalDecorators": true, |
|
"noImplicitAny": true, |
|
"lib": ["dom", "es2017"], |
|
"skipLibCheck": true, |
|
"declaration": true, |
|
"allowSyntheticDefaultImports": true, |
|
"outDir": "lib" |
|
}, |
|
"include": ["src"] |
|
}
|
|
|