16 lines
363 B
JSON
16 lines
363 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"noEmit": true,
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"lib": ["ES2021", "DOM"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": [
|
|
"src/sdk/paths/*"
|
|
],
|
|
"include": ["src/**/*"],
|
|
}
|