30 lines
696 B
JSON
30 lines
696 B
JSON
{
|
|
"include": [
|
|
"src/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"compilerOptions": {
|
|
"rootDir": "./",
|
|
"baseUrl": ".",
|
|
"target": "ES2018",
|
|
"module": "commonjs",
|
|
"lib": ["es2018", "DOM"],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"typeRoots": [
|
|
"./types",
|
|
"./node_modules/@types",
|
|
"./wasmcloud-rs-js/pkg/"
|
|
],
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
}
|
|
} |