20 lines
403 B
JSON
20 lines
403 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2022",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "node",
|
||
|
"declaration": true,
|
||
|
"outDir": "./dist",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"files": [
|
||
|
"js/main.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|