16 lines
304 B
JSON
16 lines
304 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2017",
|
||
|
"module": "ES2015",
|
||
|
"lib": ["ES2017"],
|
||
|
"declaration": true,
|
||
|
"outDir": "./mjs",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true
|
||
|
},
|
||
|
"include": [
|
||
|
"ts/*.ts"
|
||
|
]
|
||
|
}
|