Skip to content

Commit e5ea7ab

Browse files
committed
remove typescript from the root app
1 parent ae9e838 commit e5ea7ab

File tree

6 files changed

+13
-28
lines changed

6 files changed

+13
-28
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@ jobs:
1111
- run: npm i
1212
- run: npm run lint
1313

14-
typecheck:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
- run: npm i
19-
- run: tsc
20-
2114
test:
2215
runs-on: ubuntu-latest
2316
steps:

packages/components/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
3+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
44
"target": "ES2020",
55
"useDefineForClassFields": true,
66
"lib": ["ES2020", "DOM", "DOM.Iterable"],

public/build/app.min.js

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/app.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import commonjs from '@rollup/plugin-commonjs'
22
import resolve from '@rollup/plugin-node-resolve'
33
import replace from '@rollup/plugin-replace'
44
import terser from '@rollup/plugin-terser'
5-
import typescript from '@rollup/plugin-typescript'
65
import postcss from 'rollup-plugin-postcss'
76

87

@@ -25,9 +24,6 @@ export default [
2524
}),
2625
resolve({ browser: true }),
2726
terser(),
28-
typescript({
29-
exclude: ['test/**'],
30-
}),
3127
postcss({
3228
extensions: ['.css'],
3329
}),

tsconfig.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)