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.
gristlabs_grist-core/buildtools/tsconfig-base.json

32 lines
650 B

{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"strict": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"allowJs": true,
"baseUrl": "..",
"rootDir": "..",
"outDir": "../_build",
"paths": {
"*": [
"*",
"grist-core/*",
"stubs/*",
"ext/*"
],
},
"composite": true,
"plugins": [{
"name": "typescript-eslint-language-service"
}],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react"
}
}