mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
21 lines
455 B
JSON
21 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "..",
|
|
"composite": true,
|
|
"plugins": [{
|
|
"name": "typescript-tslint-plugin"
|
|
}],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react"
|
|
}
|
|
}
|