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.
 
 
 
 
 

26 lines
598 B

{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"noImplicitAny": false,
"isolatedModules": false,
"experimentalDecorators": true,
"esModuleInterop": true,
"noImplicitThis": false,
"strictNullChecks": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"jsx": "preserve",
"noEmit": true,
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"compileOnSave": false
}