34 lines
696 B
JSON
34 lines
696 B
JSON
{
|
|
"compilerOptions": {
|
|
"types": [
|
|
"@league-of-foundry-developers/foundry-vtt-types",
|
|
],
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
},
|
|
"include": [
|
|
"src",
|
|
"src/**/*.js"
|
|
]
|
|
}
|