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.
 
 
 
 
amis/tsconfig.json

24 lines
580 B

{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["es6", "dom"],
"sourceMap": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "./src",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./node_modules/@types", "./typings"]
},
"include": ["**/*"],
"exclude": [
"node_modules"
],
"types": ["typePatches"]
}