mirror of
https://github.com/slidevjs/rough-notation.git
synced 2026-01-14 17:44:21 +01:00
25 lines
472 B
JSON
25 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"declaration": true,
|
|
"outDir": "./lib"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|