mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
c8c5afbbca
The cssVars.ts file has changed to include some more knobs for custom theming. This commit updates the file, and introduces a `stubs` directory for stubbing code that is specific to our deployments of Grist and not of general interest.
31 lines
623 B
JSON
31 lines
623 B
JSON
{
|
|
"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/*"
|
|
],
|
|
},
|
|
"composite": true,
|
|
"plugins": [{
|
|
"name": "typescript-tslint-plugin"
|
|
}],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react"
|
|
}
|
|
}
|