16 lines
333 B
JSON
16 lines
333 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"lib": ["es6", "dom"]
|
|
},
|
|
"exclude": ["test"],
|
|
"include": ["src", "test.d.ts"]
|
|
}
|