19 lines
355 B
JSON
19 lines
355 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"baseUrl": "./src",
|
|
"typeRoots": [
|
|
"./types"
|
|
]
|
|
},
|
|
"include": [
|
|
"types/**/*.d.ts",
|
|
"src/**/*.{js,cjs,mjs}"
|
|
]
|
|
}
|