2020-05-20 04:50:46 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2016",
|
|
|
|
"module": "commonjs",
|
|
|
|
"strict": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"moduleResolution": "node",
|
2020-05-22 06:14:28 +00:00
|
|
|
"allowJs": true,
|
2020-05-20 04:50:46 +00:00
|
|
|
"baseUrl": "..",
|
2020-05-22 06:14:28 +00:00
|
|
|
"rootDir": "..",
|
|
|
|
"outDir": "../_build",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"*",
|
|
|
|
"grist-core/*",
|
|
|
|
],
|
|
|
|
},
|
2020-05-20 04:50:46 +00:00
|
|
|
"composite": true,
|
|
|
|
"plugins": [{
|
|
|
|
"name": "typescript-tslint-plugin"
|
|
|
|
}],
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"jsx": "react"
|
|
|
|
}
|
|
|
|
}
|