mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
18 lines
455 B
JSON
18 lines
455 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"target": "esnext",
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["dom", "es2015", "es2017"],
|
||
|
"strict": true,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"removeComments": false,
|
||
|
"preserveConstEnums": true
|
||
|
},
|
||
|
"include": ["./src/**/*"]
|
||
|
}
|