You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
399 B
23 lines
399 B
{ |
|
"compilerOptions": { |
|
"module": "CommonJS", |
|
"esModuleInterop": true, |
|
"outDir": "dist", |
|
"rootDir": "./src", |
|
"target": "ES6", |
|
"strict": true, |
|
"lib": [ |
|
"es2020", |
|
"DOM" |
|
], |
|
"typeRoots": [ |
|
"./node_modules/@types" |
|
], |
|
"resolveJsonModule": true, |
|
"skipLibCheck": true |
|
}, |
|
"include": [ |
|
"src/**/*", |
|
"node_modules/swaf/types" |
|
] |
|
}
|
|
|